home *** CD-ROM | disk | FTP | other *** search
- /* ======================================== */
- /* FINAL WRITER AREXX MACRO */
- /* by Nigel S. Domaingue, 28/1/95 */
- /* */
- /* Script to goto Table of Contents */
- /* $Ver: Goto_TOC 1.0 (28/1/95) */
- /* ======================================== */
-
- /* If the Contents page exists, then go to it, */
- /* Otherwise, create one and go to it. */
-
- Options Results
-
- GoToSection 'Table of Contents'
- IF ( RC ~= 0 ) THEN
- ShowMessage 1 0 '"No Contents Page at present." "Create one?" "" "Yes" "No" ""'
- ctoc = Result
- IF ( ctoc = 1 ) THEN
- Create 'Contents' prompt
-
-
-
-